home *** CD-ROM | disk | FTP | other *** search
-
- {*******************************************************}
- { }
- { Delphi Visual Component Library }
- { }
- { Copyright (c) 1996,97 Borland International }
- { }
- {*******************************************************}
-
- unit DBInpReq;
-
- {$R-}
-
- interface
-
- uses Windows, Classes, SysUtils, Forms, Controls, StdCtrls, ExtCtrls,
- BDE, Dialogs;
-
- type
- TInputReqDialog = class(TForm)
- OKButton: TButton;
- CancelButton: TButton;
- InputOptions: TPanel;
- NoPromptAgain: TCheckBox;
- ErrorHelp: TLabel;
- InputMessage: TLabel;
- ErrorGroupBox: TPanel;
- ErrorGoupBoxSpacer: TPanel;
- DescriptionGroupBox: TPanel;
- DescriptionGroupBoxSpacer: TPanel;
- procedure InputOptionsClick(Sender: TObject);
- end;
-
- function InputRequest(var InputReqInfo: CBInputDesc): CBRType;
-
- implementation
-